/* Options: Date: 2026-04-15 21:55:10 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://kpm_digiofficeapigateway.tbi.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Get4PSBCCompanies.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * Get companies mapped to 4PS specific result set */ @Route(Path="/4PSBC/companies", Verbs="GET") @Api(Description="Get companies mapped to 4PS specific result set") @ApiResponse(Description="Companies are returned in the message body", IsDefaultResponse=true, StatusCode=200) open class Get4PSBCCompanies : IReturn> { /** * Number of items in the resultset per page. Default = 100 */ @ApiMember(Description="Number of items in the resultset per page. Default = 100") var PageSize:Int? = null /** * Page number of paged resultset. Default = 1 */ @ApiMember(Description="Page number of paged resultset. Default = 1") var PageNumber:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = Get4PSBCCompanies.responseType }